From ed2c9768a0471d11a0b87a5514dcbf387ebbf8f7 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Thu, 25 Jan 2024 20:09:56 -0500 Subject: Markdown cb style; Fixed chrome-only issue; Format date on blog --- src/pages/blog/[...slug].astro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/pages/blog/[...slug].astro') diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro index 7db75bb..de4efb6 100644 --- a/src/pages/blog/[...slug].astro +++ b/src/pages/blog/[...slug].astro @@ -1,6 +1,7 @@ --- import Page from '../../layouts/BlogPost.astro'; import { getEntry } from 'astro:content'; +import { formatDate } from "../../util"; const { slug } = Astro.params; if (slug === undefined) { @@ -15,7 +16,7 @@ if(entry === undefined) { const { Content } = await entry.render(); --- - +
-- cgit v1.2.3